搜索
tint 属性用于为视图设置局部的强调色,覆盖默认的系统 accent color。与应用的全局 accent color 不同,tint 不会被用户偏好覆盖,始终有效,适合用来强调控件的语义意义或视觉重点。
tint
1tint?: ShapeStyle | DynamicShapeStyle
ShapeStyle
DynamicShapeStyle
Toggle
Slider
Button
ProgressView
1<Toggle 2 tint="systemGreen" 3 // ... 4/>
1<ProgressView 2 value={0.6} 3 tint={{ 4 gradient: [ 5 { color: "red", location: 0 }, 6 { color: "orange", location: 1 } 7 ], 8 startPoint: { x: 0, y: 0 }, 9 endPoint: { x: 1, y: 1 } 10 }} 11/>
1<Slider 2 tint={{ 3 light: "blue", 4 dark: "purple" 5 }} 6 // ... 7/>